home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / BSP Tree 1.2 / Sources / Graphics / include / coord.h < prev    next >
Encoding:
Text File  |  1995-02-25  |  703 b   |  20 lines  |  [TEXT/MMCC]

  1. //------------------------------------------------------------------------------
  2. //    File:                    coord.h
  3. //    Date:                    2/25/95
  4. //    Author:                Bretton Wade
  5. //
  6. //    Description:    this file contains the definition of coord
  7. //
  8. //------------------------------------------------------------------------------
  9.  
  10. #ifndef    COORD
  11. #define    COORD
  12.  
  13. //------------------------------------------------------------------------------
  14. //    types
  15. //------------------------------------------------------------------------------
  16. enum    coord {X = 0, Y = 1, Z = 2, W = 3};                                                                                //    coordinate access values for 2d and 3d tuples
  17.  
  18. //------------------------------------------------------------------------------
  19.  
  20. #endif    //COORD